home *** CD-ROM | disk | FTP | other *** search
/ The National Palace Museum Experience / The National Palace Museum Experience.iso / Programs / Index.dxr / 00114.ls < prev    next >
Encoding:
Text File  |  1998-11-19  |  564 b   |  29 lines

  1. global endSprite
  2.  
  3. on enterFrame
  4.   global hiliterect, roomcontentsprite, currlabel, returnflag
  5.   if rollOver(roomcontentsprite) then
  6.     puppetSprite(hiliterect, 0)
  7.     set returnflag to 1
  8.     go(currlabel && "Menu")
  9.   end if
  10.   set mouseposition to point(the mouseH, the mouseV)
  11.   if inside(mouseposition, rect(83, 79, 318, 114)) then
  12.     scrollpictup(34)
  13.   else
  14.     if inside(mouseposition, rect(83, 431, 318, 466)) then
  15.       scrollpictdown(34)
  16.     else
  17.       cursor(-1)
  18.     end if
  19.   end if
  20. end
  21.  
  22. on exitFrame
  23.   go(the frame)
  24. end
  25.  
  26. on idle
  27.   checkrollover(#up)
  28. end
  29.